@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#app {
  display: none;
}

.photobooth-wrapper {
  width: 30%;
  height: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #383838;
  border: 0.05em solid #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.photobooth-wrapper .photobooth-container {
  width: 95%;
  height: 93%;
  border: 0.08em solid #383838;
}

.photobooth-wrapper .photobooth-container .photobooth-header {
  width: 100%;
  height: 13%;
  background: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  color: #eee;
  font-weight: bold;
}

.photobooth-wrapper .photobooth-container .photobooth-content {
  width: 100%;
  height: 87%;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage-title {
  width: 100%;
  height: 12%;
  background: #444444;
  border-bottom: 0.05em solid #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 17px;
  color: #444444;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage {
  width: 100%;
  height: 88%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage button {
  width: 90%;
  height: 40px;
  margin: 8px 0;
  color: #ffffff;
  font-size: 15px;
  background: #444444;
  outline: none;
  border: none;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage button:hover {
  background: #444444;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage .message {
  width: 90%;
  font-size: 15px;
  color: white;
  margin: 50px 0;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage[Stage="3"] .image {
  width: 200px;
  height: 200px;
  margin: 20px 0;
  border: 0.08em solid #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage[Stage="3"] .image img {
  width: 90%;
  height: 90%;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage[Stage="3"] .buttons {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.photobooth-wrapper .photobooth-container .photobooth-content .photobooth-stage[Stage="3"] .buttons button {
  width: 49%;
}
/*# sourceMappingURL=Main.css.map */